home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / Implementation / UI / UI.r < prev    next >
Encoding:
Text File  |  1997-02-13  |  1.2 KB  |  58 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        UI.r
  3.  
  4.     Contains:    Resources for the UI subsystem
  5.  
  6.     Owned by:    Chris Linn
  7.  
  8.     Copyright:    © 1995 - 1996 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <3>     10/4/96    CSL        1334277: Added STR for 'About OpenDoc…'
  13.                                     menu text
  14.          <2>     9/18/96    TJ        1384389 Remove RSRC names in Non-Debug
  15.                                     Builds.
  16.          <4>     6/29/95    jpa        Added "Desktop" string [1262681]
  17.          <3>     6/19/95    jpa        Whoops, ignore 'ckid' in .res file
  18.          <2>     6/19/95    jpa        Include WinPopM.res [1259398]
  19.          <1>     5/4/95    eeh        1242889: First Checked In.
  20.  
  21.     To Do:
  22.     In Progress:
  23.         
  24. */
  25.  
  26.  
  27. #define SystemSevenOrBetter 1            // we want the extended types
  28. #define    SystemSevenOrLater    1            // Types.r uses this variable
  29.  
  30. #define oldTemp            // to get 'dctb' resources to rez
  31. #ifndef __TYPES_R__
  32. #include "Types.r"
  33. #endif
  34. #undef oldTemp
  35.  
  36. #ifndef _UIDEFS_
  37. #include "UIDefs.h"
  38. #endif
  39.  
  40. include "WinPopM.res" not 'ckid';        // Prebuilt resources for window-title pop-up
  41.  
  42.  
  43. resource 'STR ' (kODDraftTextResID
  44. #If ODDebug
  45. , "Draft window format string"
  46. #endif
  47. ) {
  48.     "^0 Draft ^1"
  49. };
  50.  
  51. resource 'STR ' (kODDesktopTitleStrID, purgeable) {
  52.     "Desktop"
  53. };
  54.  
  55. resource 'STR ' (kODAboutOpenDocStrID, purgeable) {
  56.     "About OpenDoc…"
  57. };
  58.